home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / 273_01.zip / TCMENU.H < prev    next >
Text File  |  1993-04-04  |  426b  |  27 lines

  1. #if __STDC__
  2. #define _Cdecl
  3. #else
  4. #define _Cdecl  cdecl
  5. #endif
  6.  
  7. struct menu_struc   {
  8.     int nsels;
  9.     int attr;
  10.     char *menu_string;
  11.     int rattr;
  12.     int icol[15];
  13.     int ilen[15];
  14.     int selected;
  15.     int p_sel;
  16. };
  17.  
  18. struct pull_down {
  19.     int npulls;
  20.     int mlen;
  21.     char *pull_items;
  22. };
  23.  
  24.  
  25. int _Cdecl  menubar(struct menu_struc *,struct pull_down *);
  26. int _Cdecl  do_pull_down(struct pull_down *,struct menu_struc *);
  27.